home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Login Win.xpl < prev    next >
Text File  |  2002-07-26  |  2KB  |  65 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\31) Inside Login Window"
  5. "NAME"="Login Window: Options"
  6. "VERSION"="2.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0101011"
  9. "TEXT 1"="Show "Shutdown without Power Off" button"
  10. "TEXT 2"="Activate NUM-LOCK while waiting for login"
  11. "DESCRIPTION 1"="If the "Shutdown without Power Off" button is enabled, it is possible to shutdown the computer without login from the Welcome window."
  12. "DESCRIPTION 2"="This setting is normally enabled on Windows NT Workstation and disabled on Windows NT Server."
  13. "DESCRIPTION 3"="If the second is activated, NUM-LOCK is activate while Windows NT waits for a login ("Press Ctrl-Alt-Del to login")."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="Thanks to CptSiskoX for his help!"
  18. "COMMENT 2"="Thanks to alexmorris@uk.ibm.com and Alexander Khoroshev [aelric@atnet.ru] for the NUM-LOCK fix."
  19.  
  20. sP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
  21. v1="ShutdownWithoutLogon"
  22. 'v2="---NOT USED YET * SEE BELOW---"
  23. 'v3="DontDisplayLastUserName"
  24.  
  25. Sub Plugin_Initialize 
  26.  If RegPathExists(sp) then
  27.   
  28.     i=RegReadValue(sp & v1)
  29.     if i=1 then SetUIElement 1,true
  30.  
  31.     i=RegReadValue("HKUS\.Default\Control Panel\Keyboard\InitialKeyboardIndicators")
  32.     if i="2" then SetUIElement 2,true
  33.  
  34.  else
  35.   Disable
  36.  end if
  37. End Sub
  38.  
  39. Sub Plugin_CheckData(ElementIndex)
  40. End Sub
  41.  
  42. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  43.  b=GetUIElement(1)
  44.  if b=true then
  45.   Call RegWriteValue(sp & v1,"1",1)
  46.  else
  47.   Call RegWriteValue(sp & v1,"0",1)
  48.  end if
  49.  
  50.  If GetUiElement(2)=true then
  51.     Call RegWriteValue("HKUS\.Default\Control Panel\Keyboard\InitialKeyboardIndicators",2,1)
  52.  else
  53.     Call RegWriteValue("HKUS\.Default\Control Panel\Keyboard\InitialKeyboardIndicators",0,1)
  54.  end if
  55.  
  56.  
  57.  Call Logoff
  58. End Sub
  59.  
  60. Sub Plugin_Terminate 
  61. End Sub
  62.  
  63.  
  64.  
  65.